{% extends "base.html" %} {% block title %}Lawyer Directory — LegalEase AI{% endblock %} {% block content %}
Back to Dashboard

Lawyer Directory

{{ lawyers|length }} lawyers on the platform

{% if total_notifications > 0 %}
{{ total_notifications }} pending case notification{{ 's' if total_notifications != 1 else '' }}
across {{ lawyers_with_notifications }} lawyer{{ 's' if lawyers_with_notifications != 1 else '' }}
{% endif %}
Clear
{% if lawyers %}
{% for lawyer in lawyers %}
{% if lawyer.pending_count > 0 %}
{{ lawyer.pending_count }}
{% endif %}
{{ lawyer.name[0].upper() }}
{{ lawyer.name }} {% if lawyer.id == my_lawyer_id %} YOU {% endif %}
{{ lawyer.law_firm_name }}
{{ lawyer.specialization }}
{{ lawyer.city }} {{ lawyer.experience_years }} yrs exp {{ lawyer.rating }} {{ lawyer.success_rate_percentage }}% success
{{ lawyer.appointment_count }} total cases {% if lawyer.pending_count > 0 %} {{ lawyer.pending_count }} new client notification{{ 's' if lawyer.pending_count != 1 else '' }} {% endif %}
{% if lawyer.latest_pending_client %}
Latest: {{ lawyer.latest_pending_client }} requested an appointment
{% endif %}
PKR {{ "{:,.0f}".format(lawyer.consultation_fee_pkr) }}
{% if lawyer.id == my_lawyer_id %} {% if lawyer.pending_count > 0 %} Open My Notifications {% endif %} {% else %}
{% endif %}
{% endfor %}
{% else %}
No lawyers found matching your filters.
{% endif %}
{% endblock %}